@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 22px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    background: #300c54;
}

.stop {clear: both;}

.container {
    width: 1600px;
    margin: 0 auto;
}

.row {
    display: block;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.header {
    height: 55px;
    background: rgb(167, 134, 250);
}

.logotype {
    margin-top: 5px;
}

.menu {
    height: 80px;
    background: #000000;
    padding-top: 22px;
    text-align: right;
}

.link-menu {
    display: inline-block;
    padding: 10px 20px;
    color: rgb(123, 0, 255);
    text-decoration: none;
    transition: 0.5s;
}

.link-menu:hover {
    background: rgb(41, 0, 65);
    border-radius: 50px;
}

.content {
    padding: 150px;
    background: rgb(172, 121, 243);
}

.page-title {
    margin-bottom: 20px;

}

blockquote {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left-color: rgb(139, 0, 219);
    border-left-width: 5px;
    border-left-style: solid;
    padding-left: 20px;
    font-style: italic;
}

.right-img {
    float: right;
    width: 300px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

hr {
    margin: 20px 0;
}